home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
Tools
/
glimpse-2.1
/
agrep
/
dummyfilters.c
< prev
next >
Wrap
Text File
|
1995-05-16
|
1KB
|
115 lines
/* Copyright (c) 1994 Burra Gopal, Udi Manber. All Rights Reserved. */
/* bgopal: used if search in compressed text files is not being performed */
/* Always say could not be compressed */
quick_tcompress()
{
return 0;
}
/* Always say could not be uncompressed */
quick_tuncompress()
{
return 0;
}
/* Always return uncompressible */
tuncompressible()
{
return 0;
}
/* Always return uncompressible */
tuncompressible_filename()
{
return 0;
}
/* Always return uncompressible */
tuncompressible_file()
{
return 0;
}
/* Always return uncompressible */
tuncompressible_fp()
{
return 0;
}
exists_tcompressed_word()
{
return -1;
}
unsigned char *
forward_tcompressed_word(begin, end, delim, len, outtail, flags)
unsigned char *begin, *end, *delim;
int len, outtail, flags;
{
return begin;
}
unsigned char *
backward_tcompressed_word(end, begin, delim, len, outtail, flags)
unsigned char *begin, *end, *delim;
int len, outtail, flags;
{
return end;
}
tcompress_file()
{
return 0;
}
tuncompress_file()
{
return 0;
}
initialize_tcompress()
{
return 0;
}
initialize_tuncompress()
{
return 0;
}
initialize_common()
{
return 0;
}
uninitialize_tuncompress()
{
return 0;
}
compute_dictionary()
{
return 0;
}
uninitialize_common()
{
return 0;
}
uninitialize_tcompress()
{
return 0;
}
set_usemalloc()
{
return 0;
}
unset_usemalloc()
{
return 0;
}